home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d8 / ragtagqm.arc / SHOWNAME.SCR < prev   
Text File  |  1990-04-26  |  830b  |  22 lines

  1. ; ShowName, version 0.01
  2. ;
  3. ; Qmodem script for displaying BBS name
  4. ;
  5. ; Written by Maurice Crouse, 12 April 1990.
  6. ; Qmodem adaptation written 24 April 1990.
  7. ;      
  8. ; Set up a function key in Qmodem to send the string @SCRIPT SHOWNAME.
  9. ; Any time you need to know the name of the board to which you are
  10. ; connected (Qmodem does not show this information on its status line),
  11. ; just tap the function key.  A window will open up for about a second,
  12. ; displaying the board name.
  13.  
  14.  
  15. getscr                ;save the original screen
  16. box 10 10 60 14       ;draw a box
  17. color 11              ;use the color cyan
  18. gotoxy 3 2            ;at column 3, row 2 within the box
  19. display "$board"      ;display the board name
  20. pause 1000            ;keep it displayed for 1 second
  21. putscr                ;restore the original screen
  22.